Solo el resultado
Resultado y codigo
letters
## [1] "a" "b" "c" "d" "e" "f" "g" "h" "i" "j" "k" "l" "m" "n" "o" "p" "q"
## [18] "r" "s" "t" "u" "v" "w" "x" "y" "z"
print('Hola')
## [1] "Hola"
Nota:…
Hasta ahora solo esta mostrando el código pero no lo está evaluando.
# Pintar el mapa
ggplot() + geom_sf(data = shape , color = 'gray', aes(fill=casos_06), size = 0.5 ,) +
scale_fill_viridis(name="Casos",na.value = "white",direction = 1,option = 'inferno') +
ggsn::north(data = shape , location = "topleft") +
ggsn::scalebar(data = shape, dist = 5, dist_unit = "km",transform = T, model = "WGS84",location = "bottomleft") +
ggtitle('Casos de Covid-19 en junio por UPZ') + xlab('') + ylab('') +
theme_bw()